home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Seq / Sequencer.C < prev    next >
C/C++ Source or Header  |  2005-03-14  |  4KB  |  166 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   Sequencer.C - The Sequencer
  5.   Copyright (C) 2003-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #include <math.h>
  24. #include <stdlib.h>
  25. #include <stdio.h>
  26.  
  27. #include <sys/time.h>
  28. #include <time.h>
  29.  
  30. #include "Sequencer.h"
  31.  
  32.  
  33.  
  34. Sequencer::Sequencer(){
  35.     play=0;
  36.     for (int i=0;i<NUM_MIDI_TRACKS;i++){
  37.     miditrack[i].track.first=NULL;
  38.     miditrack[i].track.current=NULL;
  39.     miditrack[i].track.size=0;
  40.     miditrack[i].track.length=0.0;
  41.     miditrack[i].record.first=NULL;
  42.     miditrack[i].record.current=NULL;
  43.     miditrack[i].record.size=0;
  44.     miditrack[i].record.length=0.0;
  45.  
  46.     nextevent[i].time=0.0;
  47.     resettime(&playtime[i]);
  48.     };
  49.     
  50.     setplayspeed(0);
  51. };
  52.  
  53. Sequencer::~Sequencer(){
  54.     for (int i=0;i<NUM_MIDI_TRACKS;i++){
  55.     deletelist(&miditrack[i].track);
  56.     deletelist(&miditrack[i].record);
  57.     };
  58. };
  59.  
  60.  
  61. int Sequencer::importmidifile(char *filename){
  62.     if (midifile.loadfile(filename)<0) return(-1);
  63.  
  64.     for (int i=0;i<NUM_MIDI_TRACKS;i++){
  65.     deletelist(&miditrack[i].record);
  66.     };
  67.     if (midifile.parsemidifile(this)<0) return(-1);
  68.     
  69.     //copy the "record" track to the main track
  70.     for (int i=0;i<NUM_MIDI_TRACKS;i++){
  71.     deletelist(&miditrack[i].track);
  72.     miditrack[i].track=miditrack[i].record;
  73.     deletelistreference(&miditrack[i].record);
  74.     };
  75.     return(0);
  76. };
  77.  
  78.  
  79.  
  80. void Sequencer::startplay(){
  81.     if (play!=0) return;
  82.     for (int i=0;i<NUM_MIDI_TRACKS;i++) resettime(&playtime[i]);
  83.     
  84.     for (int i=0;i<NUM_MIDI_TRACKS;i++){
  85.     rewindlist(&miditrack[i].track);
  86.     };
  87.     play=1;
  88.     
  89. };
  90. void Sequencer::stopplay(){
  91.     if (play==0) return;
  92.     play=0;
  93. };
  94.  
  95. // ************ Player stuff ***************
  96.  
  97. int Sequencer::getevent(char ntrack,int *midich, int *type,int *par1, int *par2){
  98.     *type=0;
  99.     if (play==0) return(-1);
  100.  
  101.     //test
  102. //    if (ntrack!=0) return(-1);
  103.  
  104.     updatecounter(&playtime[(int)ntrack]);
  105.  
  106. //    printf("%g %g\n",nextevent[ntrack].time,playtime[ntrack].abs);
  107.  
  108.     if (nextevent[(int)ntrack].time<playtime[(int)ntrack].abs) readevent(&miditrack[(int)ntrack].track,&nextevent[(int)ntrack].ev);
  109.     else return(-1);
  110.     if (nextevent[(int)ntrack].ev.type==-1) return(-1);
  111. //    printf("********************************\n");    
  112.  
  113.     //sa pun aici o protectie. a.i. daca distanta dintre timpul curent si eveliment e prea mare (>1sec) sa elimin nota
  114.  
  115.     if (ntrack==1) printf("_ %f %.2f  (%d)\n",nextevent[(int)ntrack].time,playtime[(int)ntrack].abs,nextevent[(int)ntrack].ev.par2);
  116.  
  117.     *type=nextevent[(int)ntrack].ev.type;
  118.     *par1=nextevent[(int)ntrack].ev.par1;
  119.     *par2=nextevent[(int)ntrack].ev.par2;
  120.     *midich=nextevent[(int)ntrack].ev.channel;
  121.  
  122.     
  123.     double dt=nextevent[(int)ntrack].ev.deltatime*0.0001*realplayspeed;
  124.     printf("zzzzzzzzzzzzzz[%d] %d\n",ntrack,nextevent[(int)ntrack].ev.deltatime);
  125.     nextevent[(int)ntrack].time+=dt;
  126.  
  127. //    printf("%f   -  %d %d \n",nextevent[ntrack].time,par1,par2);
  128.     return(0);//?? sau 1
  129. };
  130.  
  131. /************** Timer stuff ***************/
  132.  
  133. void Sequencer::resettime(timestruct *t){
  134.     t->abs=0.0;
  135.     t->rel=0.0;
  136.     
  137.     timeval tval;
  138.     
  139.     t->last=0.0;
  140.     #ifndef OS_WINDOWS
  141.     if (gettimeofday(&tval,NULL)==0)  
  142.     t->last=tval.tv_sec+tval.tv_usec*0.000001;
  143.     #endif
  144.     
  145. };
  146.  
  147. void Sequencer::updatecounter(timestruct *t){
  148.     timeval tval;
  149.     double current=0.0;
  150.     #ifndef OS_WINDOWS
  151.     if (gettimeofday(&tval,NULL)==0)  
  152.     current=tval.tv_sec+tval.tv_usec*0.000001;
  153.     #endif
  154.     
  155.     t->rel=current - t->last;
  156.     t->abs+=t->rel;
  157.     t->last=current;
  158.     
  159. //    printf("%f %f %f\n",t->last,t->abs,t->rel);
  160. };
  161.  
  162. void Sequencer::setplayspeed(int speed){
  163.     playspeed=speed;
  164.     realplayspeed=pow(10.0,speed/128.0);
  165. };
  166.